5f817d566f02214a2a8c3f1f62e1eef3d981f029,modules/core/src/main/java/com/illposed/osc/utility/OSCByteArrayToJavaConverter.java,OSCByteArrayToJavaConverter,convertMessage,#Input#,167
Before Change
// we're looking at an array -- read it in
message.addArgument(readArray(rawInput, types, ++i));
// then increment i to the end of the array
while (types.get(i).charValue() != ']') {
i++;
}
} else {
After Change
// we're looking at an array -- read it in
message.addArgument(readArray(rawInput, types, ++i));
// then increment i to the end of the array
while (types.charAt(i) != ']') {
i++;
}
} else {